1. /* srosubsi.cpp by K.Tsuru */
  2. // function ID = 808 BRADIX
  3. /*******************
  4. SRational class
  5. SRational = SInteger
  6. substitution operator
  7. ********************/
  8. #ifndef SN_H
  9. #include "sn.h"
  10. #endif
  11. SRational& SRational::operator=(const SInteger& a){
  12. num = a; den.SetSmall(1);
  13. reduceDone = true; RadixCheck();
  14. return *this;
  15. }

srosubsi.cpp : last modifiled at 2015/12/03 21:22:41(346 bytes)
created at 2016/06/26 15:57:35
The creation time of this html file is 2016/09/18 20:28:05 (Sun Sep 18 20:28:05 2016).